home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / mail / sendmail / UCB / sendmail.8.6.8.patch.Z / sendmail.8.6.8.patch
Encoding:
Text File  |  1994-03-21  |  3.8 KB  |  154 lines

  1. *** RELEASE_NOTES.OLD    Mon Mar 21 23:34:38 1994
  2. --- RELEASE_NOTES    Mon Mar 21 23:31:59 1994
  3. ***************
  4. *** 1,9 ****
  5.               SENDMAIL RELEASE NOTES
  6. !          @(#)RELEASE_NOTES    8.6.7.1 (Berkeley) 3/14/94
  7.   
  8.   This listing shows the version of the sendmail binary, the version
  9.   of the sendmail configuration files, the date of release, and a
  10.   summary of the changes in that release.
  11.   
  12.   8.6.7/8.6.6    94/03/14
  13.       SECURITY: it was possible to get root access by using wierd
  14. --- 1,14 ----
  15.               SENDMAIL RELEASE NOTES
  16. !          @(#)RELEASE_NOTES    8.6.8.1 (Berkeley) 3/21/94
  17.   
  18.   This listing shows the version of the sendmail binary, the version
  19.   of the sendmail configuration files, the date of release, and a
  20.   summary of the changes in that release.
  21. + 8.6.8/8.6.6    94/03/21
  22. +     SECURITY: it was possible to read any file as root using the
  23. +         E (error message) option.  Reported by Richard Jones;
  24. +         fixed by Michael Corrigan and Christophe Wolfhugel.
  25.   
  26.   8.6.7/8.6.6    94/03/14
  27.       SECURITY: it was possible to get root access by using wierd
  28. *** doc/op/op.me.OLD    Mon Mar 21 23:33:11 1994
  29. --- doc/op/op.me    Mon Mar 21 23:34:05 1994
  30. ***************
  31. *** 30,36 ****
  32.   .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.   .\" SUCH DAMAGE.
  34.   .\"
  35. ! .\"    @(#)op.me    8.34 (Berkeley) 3/3/94
  36.   .\"
  37.   .\" eqn op.me | pic | troff -me
  38.   .eh 'SMM:08-%''Sendmail Installation and Operation Guide'
  39. --- 30,36 ----
  40.   .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  41.   .\" SUCH DAMAGE.
  42.   .\"
  43. ! .\"    @(#)op.me    8.35 (Berkeley) 3/21/94
  44.   .\"
  45.   .\" eqn op.me | pic | troff -me
  46.   .eh 'SMM:08-%''Sendmail Installation and Operation Guide'
  47. ***************
  48. *** 69,75 ****
  49.   Mammoth Project
  50.   eric@CS.Berkeley.EDU
  51.   .sp
  52. ! Version 8.34
  53.   .sp
  54.   For Sendmail Version 8.6
  55.   .)l
  56. --- 69,75 ----
  57.   Mammoth Project
  58.   eric@CS.Berkeley.EDU
  59.   .sp
  60. ! Version 8.35
  61.   .sp
  62.   For Sendmail Version 8.6
  63.   .)l
  64. ***************
  65. *** 4103,4109 ****
  66.   .i sendmail
  67.   to relinquish its setuid permissions.
  68.   The options that will not cause this are
  69. ! b, d, e, E, i, L, m, o, p, r, s, v, C, and 7.
  70.   Also, M (define macro) when defining the r or s macros
  71.   is also considered
  72.   .q safe .
  73. --- 4103,4109 ----
  74.   .i sendmail
  75.   to relinquish its setuid permissions.
  76.   The options that will not cause this are
  77. ! b, d, e, i, L, m, o, p, r, s, v, C, and 7.
  78.   Also, M (define macro) when defining the r or s macros
  79.   is also considered
  80.   .q safe .
  81. ***************
  82. *** 6887,6893 ****
  83.   .\"Eric Allman
  84.   .\"Britton-Lee, Inc.
  85.   .\".sp
  86. ! .\"Version 8.34
  87.   .\".ce 0
  88.   .bp 2
  89.   .rs
  90. --- 6887,6893 ----
  91.   .\"Eric Allman
  92.   .\"Britton-Lee, Inc.
  93.   .\".sp
  94. ! .\"Version 8.35
  95.   .\".ce 0
  96.   .bp 2
  97.   .rs
  98. *** src/readcf.c.OLD    Mon Mar 21 23:37:13 1994
  99. --- src/readcf.c    Mon Mar 21 13:05:17 1994
  100. ***************
  101. *** 33,39 ****
  102.    */
  103.   
  104.   #ifndef lint
  105. ! static char sccsid[] = "@(#)readcf.c    8.22 (Berkeley) 3/11/94";
  106.   #endif /* not lint */
  107.   
  108.   # include "sendmail.h"
  109. --- 33,39 ----
  110.    */
  111.   
  112.   #ifndef lint
  113. ! static char sccsid[] = "@(#)readcf.c    8.23 (Berkeley) 3/18/94";
  114.   #endif /* not lint */
  115.   
  116.   # include "sendmail.h"
  117. ***************
  118. *** 1075,1081 ****
  119.   
  120.       if (!safe && RealUid == 0)
  121.           safe = TRUE;
  122. !     if (!safe && strchr("bCdeEijLmoprsvw7", opt) == NULL)
  123.       {
  124.           if (opt != 'M' || (val[0] != 'r' && val[0] != 's'))
  125.           {
  126. --- 1075,1081 ----
  127.   
  128.       if (!safe && RealUid == 0)
  129.           safe = TRUE;
  130. !     if (!safe && strchr("bCdeijLmoprsvw7", opt) == NULL)
  131.       {
  132.           if (opt != 'M' || (val[0] != 'r' && val[0] != 's'))
  133.           {
  134. *** src/version.c.OLD    Mon Mar 21 23:36:17 1994
  135. --- src/version.c    Fri Mar 18 15:36:49 1994
  136. ***************
  137. *** 33,39 ****
  138.    */
  139.   
  140.   #ifndef lint
  141. ! static char sccsid[] = "@(#)version.c    8.6.7.1 (Berkeley) 3/14/94";
  142.   #endif /* not lint */
  143.   
  144. ! char    Version[] = "8.6.7";
  145. --- 33,39 ----
  146.    */
  147.   
  148.   #ifndef lint
  149. ! static char sccsid[] = "@(#)version.c    8.6.8.1 (Berkeley) 3/18/94";
  150.   #endif /* not lint */
  151.   
  152. ! char    Version[] = "8.6.8.1";
  153.